GET Hero Skill Combos
/openmlbb/mlbb/heroes/{hero_identifier}/skill-combos
API Path: /api/heroes/{hero_identifier}/skill-combos
Get the most effective skill combos for a specific hero by ID or name. Supports query parameters for pagination and localization.
Path parameters:
- hero_identifier: Hero identifier as numeric hero ID or hero name. Accepts values like
30,Yi Sun-shin, oryisunshin.
Query parameters:
- size: Number of items per page (minimum: 1).
- index: Page index (starting from 1).
- lang: Language code for localized content (default:
en).
The response includes hero skill combo details:
- records: Array of combo entries, each containing:
- _id: Unique record identifier.
- caption: Caption or localized label (e.g., laning, teamfight).
- configId: Configuration ID.
- createdAt: Creation timestamp.
- createdUser: Creator username.
- data:
- hero_id: Hero ID.
- title: Combo title (e.g., 'TEAMFIGHT COMBOS').
- desc: Descriptive instructions on how to execute the combo (e.g., laning phase or teamfight scenarios).
- skill_id: Array of skills in recommended sequence, each containing:
- skillid: Skill ID.
- skillicon: Skill icon URL.
- _id, _createdAt, _updatedAt: Metadata fields.
- updatedAt: Last update timestamp.
- updatedUser: Last updater username.
This endpoint is useful for:
- Guiding players on optimal skill usage patterns.
- Teaching effective combos for laning and teamfight scenarios.
- Helping maximize hero performance in different situations.
Python Example
from OpenMLBB import OpenMLBB
client = OpenMLBB()
response = client.mlbb.hero_skill_combos("miya", size=20, index=1, lang="en")
print(response)
Path and Query Parameters
| Name | In | Type | Required | Default |
|---|---|---|---|---|
| hero_identifier | path | string | yes | - |
| size | query | integer | no | 20 |
| index | query | integer | no | 1 |
| lang | query | string | no | en |